'Declaration Public Overloads Shared Function ZipEx (Of T1,T2,TR)( _ ByVal first As IEnumerable(Of T1), _ ByVal second As IEnumerable(Of T2), _ ByVal selector As Func(Of T1,T2,TR) _ ) As IEnumerable(Of TR)
public static IEnumerable<TR> ZipEx<T1,T2,TR>( IEnumerable<T1> first, IEnumerable<T2> second, Func<T1,T2,TR> selector )
Parameters
- first
- The first sequence to merge
- second
- The second sequence to merge
- selector
- A function that specifies how to merge the elements from the two sequences
Type Parameters
- T1
- The type of the elements of the first input sequence
- T2
- The type of the elements of the second input sequence
- TR
- The type of the elements of the result sequence
Return Value
An IEnumerable that contains merged elements of two input sequences